home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Emulatoren / UAE0.6.4 / src / include / debug.h < prev    next >
C/C++ Source or Header  |  2000-05-27  |  405b  |  24 lines

  1.  /* 
  2.   * UAE - The Un*x Amiga Emulator
  3.   * 
  4.   * Debugger
  5.   * 
  6.   * (c) 1995 Bernd Schmidt
  7.   * 
  8.   */
  9.  
  10. #define    MAX_HIST    10000
  11.  
  12. extern int firsthist;
  13. extern int lasthist;
  14. extern int debugging;
  15. #ifdef NEED_TO_DEBUG_BADLY
  16. extern struct regstruct history[MAX_HIST];
  17. extern union flagu historyf[MAX_HIST];
  18. #else
  19. extern CPTR history[MAX_HIST];
  20. #endif
  21.  
  22. extern void debug(void);
  23. extern void activate_debugger(void);
  24.